home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-12-29 | 675 b | 36 lines | [TEXT/PTM1] |
- /*
- CompuServe AutoScan macro for ProTERM
-
- To use this macro, add the command: EXTERN(":Macros:Macro.Delphi",main());
- to the end of your Delphi logon macro, prior to the END; command.
- */
-
- IF (WT("choice","mail waiting") == 2) {
- WT("choice");
- PR("go mail^m");
- WT("choice!");
- PR("read all^m");
- WHILE (1) {
- SWITCH(WT("enter choice!","<cr> to continue","% message is binary")) {
- 1, { BREAK; }
- 2, { PR("delete^m"); }
- 3, { WT("<cr> to continue"); PR("save^m"); }
- }
- }
- }
-
- PR("go macnew^m");
- WT(":>");
- PR("read new^m");
- WT(":>");
- PR("go macapp^m");
- WT(":>");
- PR("read new^m");
- WT(":>");
- //
- // ...add your own forum access commands here...
- //
- PR("bye^m");
- RETURN();
-
-